home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 1
/
LSD Compendium Deluxe 1.iso
/
a
/
programming
/
misc
/
ace-2.0.lha
/
PRGS.lha
/
Misc
/
fact.b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-01-10
|
301 b
|
17 lines
'...factorial (calculated recursively).
'...note that 0! = 1 by definition.
defsng f,n,x
sub fact(n)
if n<2 then fact=1 else fact=n*fact(n-1)
end sub
repeat
print
repeat
input "Enter an integer (0 or higher, -1 to stop): ",x
until x>=-1
if x<>-1 then print "--->>";fact(x)
until x=-1